home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / tallyho.arc / FVANNTY.FCP < prev    next >
Text File  |  1990-09-23  |  451b  |  38 lines

  1. @DSPLY "This program calculates"
  2. @DSPLY "the future value of a"
  3. @DSPLY "series of payments."
  4. @GET "Value of each payment"
  5. @RIN (1)
  6. @GET "Number of payments"
  7. @RIN (2)
  8. @GET "Annual interest rate"
  9. @RIN (3)
  10. /100
  11. =
  12. @NEW STEP
  13. @RIN (3)
  14. =
  15. @NEW STEP
  16. 1+
  17. @ROUT (3)
  18. =
  19. @NEW STEP
  20. @X**
  21. @ROUT (2)
  22. =
  23. @NEW STEP
  24. @RIN (9)
  25. =
  26. @NEW STEP
  27. @ROUT (9)
  28. -1=
  29. @NEW STEP
  30. /
  31. @ROUT (3)
  32. *
  33. @ROUT (1)
  34. =
  35. @NEW STEP
  36. @DSPLY "Future Value of Annuity"
  37. @STOP
  38.